home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
hwtypes.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
661b
|
18 lines
/* RCSVER $Id: hwtypes.sql,v 1.2 1999-02-24 14:15:44-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: hwtypes.sql
* Date: 02/17/1999
* memo: Randy Wood
* Description: Create the hwtypes table. Thsi table defines the
* hardware types (bill/coin/mag ticket).
* Changes:
************************************************************************* */
CREATE TABLE hwtypes
(
type NUMBER(38), /* Type of hardware */
descr VARCHAR2(30), /* Description of this type */
CONSTRAINT pk_hwtypes PRIMARY KEY (type)
);